go/types.Checker.exprList (method)

5 uses

	go/types (current package)
		assignments.go#L317: 	rhs, commaOk := check.exprList(origRHS, len(lhs) == 2 && returnStmt == nil)
		assignments.go#L377: 	rhs, commaOk := check.exprList(origRHS, len(lhs) == 2)
		builtins.go#L49: 		xlist, _ := check.exprList(call.Args, false)
		call.go#L208: 	args, _ := check.exprList(call.Args, false)
		call.go#L244: func (check *Checker) exprList(elist []ast.Expr, allowCommaOk bool) (xlist []*operand, commaOk bool) {